home *** CD-ROM | disk | FTP | other *** search
/ IRIX Base Documentation 2002 November / SGI IRIX Base Documentation 2002 November.iso / usr / share / catman / p_man / cat3 / SCSL / strtri.z / strtri
Encoding:
Text File  |  2002-10-03  |  3.6 KB  |  133 lines

  1.  
  2.  
  3.  
  4. SSSSTTTTRRRRTTTTRRRRIIII((((3333SSSS))))                                                          SSSSTTTTRRRRTTTTRRRRIIII((((3333SSSS))))
  5.  
  6.  
  7.  
  8. NNNNAAAAMMMMEEEE
  9.      STRTRI - compute the inverse of a real upper or lower triangular matrix A
  10.  
  11. SSSSYYYYNNNNOOOOPPPPSSSSIIIISSSS
  12.      SUBROUTINE STRTRI( UPLO, DIAG, N, A, LDA, INFO )
  13.  
  14.          CHARACTER      DIAG, UPLO
  15.  
  16.          INTEGER        INFO, LDA, N
  17.  
  18.          REAL           A( LDA, * )
  19.  
  20. IIIIMMMMPPPPLLLLEEEEMMMMEEEENNNNTTTTAAAATTTTIIIIOOOONNNN
  21.      These routines are part of the SCSL Scientific Library and can be loaded
  22.      using either the -lscs or the -lscs_mp option.  The -lscs_mp option
  23.      directs the linker to use the multi-processor version of the library.
  24.  
  25.      When linking to SCSL with -lscs or -lscs_mp, the default integer size is
  26.      4 bytes (32 bits). Another version of SCSL is available in which integers
  27.      are 8 bytes (64 bits).  This version allows the user access to larger
  28.      memory sizes and helps when porting legacy Cray codes.  It can be loaded
  29.      by using the -lscs_i8 option or the -lscs_i8_mp option. A program may use
  30.      only one of the two versions; 4-byte integer and 8-byte integer library
  31.      calls cannot be mixed.
  32.  
  33. PPPPUUUURRRRPPPPOOOOSSSSEEEE
  34.      STRTRI computes the inverse of a real upper or lower triangular matrix A.
  35.      This is the Level 3 BLAS version of the algorithm.
  36.  
  37.  
  38. AAAARRRRGGGGUUUUMMMMEEEENNNNTTTTSSSS
  39.      UPLO    (input) CHARACTER*1
  40.              = 'U':  A is upper triangular;
  41.              = 'L':  A is lower triangular.
  42.  
  43.      DIAG    (input) CHARACTER*1
  44.              = 'N':  A is non-unit triangular;
  45.              = 'U':  A is unit triangular.
  46.  
  47.      N       (input) INTEGER
  48.              The order of the matrix A.  N >= 0.
  49.  
  50.      A       (input/output) REAL array, dimension (LDA,N)
  51.              On entry, the triangular matrix A.  If UPLO = 'U', the leading
  52.              N-by-N upper triangular part of the array A contains the upper
  53.              triangular matrix, and the strictly lower triangular part of A is
  54.              not referenced.  If UPLO = 'L', the leading N-by-N lower
  55.              triangular part of the array A contains the lower triangular
  56.              matrix, and the strictly upper triangular part of A is not
  57.              referenced.  If DIAG = 'U', the diagonal elements of A are also
  58.              not referenced and are assumed to be 1.  On exit, the
  59.              (triangular) inverse of the original matrix, in the same storage
  60.  
  61.  
  62.  
  63.                                                                         PPPPaaaaggggeeee 1111
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70. SSSSTTTTRRRRTTTTRRRRIIII((((3333SSSS))))                                                          SSSSTTTTRRRRTTTTRRRRIIII((((3333SSSS))))
  71.  
  72.  
  73.  
  74.              format.
  75.  
  76.      LDA     (input) INTEGER
  77.              The leading dimension of the array A.  LDA >= max(1,N).
  78.  
  79.      INFO    (output) INTEGER
  80.              = 0: successful exit
  81.              < 0: if INFO = -i, the i-th argument had an illegal value
  82.              > 0: if INFO = i, A(i,i) is exactly zero.  The triangular matrix
  83.              is singular and its inverse can not be computed.
  84.  
  85. SSSSEEEEEEEE AAAALLLLSSSSOOOO
  86.      INTRO_LAPACK(3S), INTRO_SCSL(3S)
  87.  
  88.      This man page is available only online.
  89.  
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.                                                                         PPPPaaaaggggeeee 2222
  130.  
  131.  
  132.  
  133.